home *** CD-ROM | disk | FTP | other *** search
- // PartitionMagic Script File
-
- // This script file is an example of the Merge script command.
-
- // Scenario:
- // Disk 1 contains 4 FAT partitions, "Win 95," "Apps," "Data," and "Files."
- //
- // The user would like to merge the 4 FAT partitions into one FAT32 partition
- // and have the last three partitions exist as folders in the root directory
- // on the "Win 95" partition.
-
- // Select the partitions to be merged
- Select Partition "Win95"
- Select Merge Partition Next
-
- // Merge the second partition into the first inside an "Apps" folder
- Merge /Target=First /Folder="Apps" /FS=FAT32
-
- // Repeat for the third partition
- Select Merge Partition Next
- Merge /Target=First /Folder="Data" /FS=FAT32
-
- // Repeat for the fourth partition
- Select Merge Partition Next
- Merge /Target=First /Folder="Files" /FS=FAT32
-